home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
AppleEvents
/
Events
/
AEParameter.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
503b
|
28 lines
// AEParameter.h
#ifndef AEParameter_h
#define AEParameter_h
#ifndef ConstAEParameter_h
#include "ConstAEParameter.h"
#endif
class AEDescriptor;
class AEParameter: public ConstAEParameter
{
public:
AEParameter( AEEvent& theEvent, AEKey theKey )
: ConstAEParameter( theEvent, theKey )
{}
AEEvent& Event() const { return const_cast<AEEvent&>( ConstAEParameter::Event() ); }
void Remove();
void operator=( const AEDescriptor& );
void Set( AEType, ConstData );
};
#endif